Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 
 

22 řádky
744 B

  1. import fetch from 'node-fetch'
  2. export default eventHandler(async (req) => {
  3. const id = req.context.params?.id || ''
  4. const url = `https://api.themoviedb.org/3/movie/${id}?language=fr-FR`
  5. const url_credits = `https://api.themoviedb.org/3/movie/${id}/credits?language=fr-FR`
  6. const config = useRuntimeConfig(req)
  7. const response = await fetch(url, {
  8. method: 'get',
  9. headers: { 'Content-Type': 'application/json', 'Authorization': config.API_BEARER }
  10. })
  11. const response_credits = await fetch(url_credits, {
  12. method: 'get',
  13. headers: { 'Content-Type': 'application/json', 'Authorization': config.API_BEARER }
  14. })
  15. let details = await response.json()
  16. details.credits = await response_credits.json()
  17. return details
  18. })